[]
        
(Showing Draft Content)

C1.DataCollection.SignalR.Server.C1DataCollectionHub-1.GetPageAsync

GetPageAsync Method

GetPageAsync(Guid, int, int, IReadOnlyList<SortDescription>?, FilterExpression?)

Gets a page of data as specified in the parameters.

Declaration
public Task<PageResult<T>> GetPageAsync(Guid eTag, int startingIndex, int count, IReadOnlyList<SortDescription>? sortDescriptions = null, FilterExpression? filterExpression = null)
Public Function GetPageAsync(eTag As Guid, startingIndex As Integer, count As Integer, Optional sortDescriptions As IReadOnlyList(Of SortDescription) = Nothing, Optional filterExpression As FilterExpression = Nothing) As Task(Of PageResult(Of T))
Parameters
Type Name Description
Guid eTag

The token that determines whether the calling collection is syncrhonized.

int startingIndex

The starting index in the collection.

int count

The desired number of items to be returned.

IReadOnlyList<SortDescription> sortDescriptions

The sorting descriptions.

FilterExpression filterExpression

The filter expression.

Returns
Type Description
Task<PageResult<T>>